#!/bin/sh

# create a link inside the au-wrapper to the vst-plugin   ( -L means: is the file a symbolic link)
if [ -L "/Library/Audio/Plug-Ins/Components/The Grand 3.component/Contents/Resources/plugin.vst3" ]; then
	echo "/Library/Audio/Plug-Ins/Components/The Grand 3.component/Contents/Resources/plugin.vst3 already exists."
else
	ln -s "/Library/Audio/Plug-Ins/VST3/Steinberg/The Grand 3.vst3" "/Library/Audio/Plug-Ins/Components/The Grand 3.component/Contents/Resources/plugin.vst3"
fi
